All Questions
3 questions
5votes
1answer
5kviews
Where do you put the "main function" of a Python app?
Suppose you are developing a Python standalone application (not a library). Would you make it a Python package? Or just files next to each other? If you would make it a package, what would be the "...
6votes
4answers
5kviews
Front-end structure of large scale Django project [closed]
Few days ago, I started to work in new company. Before me, all front-end and backend code was written by one man. As you know, Django app contains two main directories for front-end: /static - for ...
1vote
1answer
689views
In Python, what is the proper testing structure for packages containing packages? [closed]
Which is the preferred test package structure for packages containing subpackages: Tests in Subpackages? a/ __init__.py b.py c/ __init__.py cc.py test/ __init__.py ...